Commercial Readiness Assessment™
A practical diagnostic to evaluate strategy, customer orientation, processes, data, people and technology.
Join the launch list →from pathlib import Path import base64 # Load prior generated site if available src = Path("/mnt/data/index_commercial_maturity_lab.html") html_text = src.read_text(encoding="utf-8") # Original vector illustrations embedded as SVG data URIs. # All artwork below is generated specifically for this website and uses only geometric/vector elements. hero_svg = r''' ''' latam_svg = r''' ''' paper_svg = r''' ''' def data_uri(svg): return "data:image/svg+xml;base64," + base64.b64encode(svg.encode("utf-8")).decode("ascii") hero_uri = data_uri(hero_svg) latam_uri = data_uri(latam_svg) paper_uri = data_uri(paper_svg) # Inject additional CSS before closing style extra_css = f""" .hero-visual {{ position: relative; z-index: 2; overflow: hidden; border-radius: 30px; box-shadow: var(--shadow); border: 1px solid rgba(255,255,255,.7); background: var(--navy); }} .hero-visual img {{ width: 100%; aspect-ratio: 4/3; object-fit: cover; }} .visual-caption {{ position: absolute; left: 20px; right: 20px; bottom: 18px; padding: 12px 15px; color: white; background: rgba(7,29,59,.76); border: 1px solid rgba(255,255,255,.16); border-radius: 13px; backdrop-filter: blur(8px); font-size: .82rem; }} .insight-visual {{ margin-top: 34px; border-radius: 26px; overflow: hidden; box-shadow: 0 20px 48px rgba(7,29,59,.10); border: 1px solid var(--line); }} .insight-visual img {{ width:100%; aspect-ratio:12/7; object-fit:cover; }} .cover-wrap {{ display:grid; place-items:center; min-height:360px; padding:24px; background:#eef3f7; border-radius:24px; border:1px solid var(--line); }} .cover-wrap img {{ width:min(290px, 80%); border-radius:14px; box-shadow:0 24px 55px rgba(7,29,59,.22); }} """ html_text = html_text.replace("", extra_css + "\n") # Replace right-side hero panel with image + concise caption old_panel_start = html_text.find('') new_panel = f'''
A practical diagnostic to evaluate strategy, customer orientation, processes, data, people and technology.
Join the launch list →